home *** CD-ROM | disk | FTP | other *** search
- ; A Poem
-
- ; RTK - 10.21.93 last mod: 11-11-93
-
- #include std.equ ; standard monitor equates
-
- #org 400 ; default starting address
-
- .loop lda >text0
- ldx <text0
- jsr _print
- lda >text1
- ldx <text1
- jsr _print
- lda >text2
- ldx <text2
- jsr _print
- lda >text3
- ldx <text3
- jsr _print
- rts
- .text0 hex 0c0d
- asc ' A POEM'
- hex 0d0d0d00
- .text1 asc ' As I was going to St. Ives'
- hex 0d
- asc ' I met a man with seven wives'
- hex 0d
- asc ' And every wife had seven sacks'
- hex 0d
- asc ' And every sack had seven cats'
- hex 0d
- asc ' And every cat had seven kits.'
- hex 0d0d00
- .text2 asc ' Kits, cats, sacks and wives...'
- hex 0d0d
- asc ' How many were going to'
- asc ' St. Ives?'
- hex 0d00
- .text3 hex 0d0d
- hex 00
-